home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 23 / AACD 23.iso / AACD / Programming / tek / kn / elate / exec / memset.c < prev    next >
Encoding:
C/C++ Source or Header  |  2001-05-12  |  316 b   |  20 lines

  1.  
  2. #include "tek/kn/elate/exec.h"
  3. #include <string.h>
  4.  
  5. /* 
  6. **    TEKlib
  7. **    (C) 2001 TEK neoscientists
  8. **    all rights reserved.
  9. **
  10. **    TVOID kn_memset(TAPTR dest, TUINT numbytes, TUINT8 fillval)
  11. **
  12. **    fill memory
  13. **
  14. */
  15.  
  16. TVOID kn_memset(TAPTR dest, TUINT numbytes, TUINT8 fillval)
  17. {
  18.     memset(dest, (int) fillval, numbytes);
  19. }
  20.